home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr30 / clock347.zip / CLKTYP.H < prev    next >
Text File  |  1993-01-31  |  2KB  |  38 lines

  1. /*****************************************************************************/
  2. /*                THE FOLLOWING PROGRAM IS THE SOLE PROPERTY OF              */
  3. /*                               RONALD Q. SMITH                             */
  4. /*             CONTAINING HIS PROPRIETARY CONFIDENTIAL INFORMATION           */
  5. /*                       COPYRIGHT RONALD Q. SMITH 1992                      */
  6. /*****************************************************************************/
  7.  
  8. /* Clock type messages and special handling values.                         */
  9.  
  10.  
  11. /* Clock type descriptive messages.                                         */
  12.  
  13. static char *clock_name[] = {
  14.     "PC/AT and compatibles",
  15.     "(M2) Zenith 18x and Supersport 20",
  16.     "(ZDS) Zenith Data Systems PCs",
  17.     "Memory mapped: SMT No-Slot",
  18.     "Direct Register I/O Bus: AST, Tandy, Vendex",
  19.     "Mitsubishi 8088 PCs: Sperry, Leading Edge",
  20.     "Indirect Register I/O Bus: AST",
  21.     "Complex I/O Bus: AST",
  22.     "Generic I/O Bus: Impossible",
  23.     "Quadram QuadCard, QuadCard II, QuadCard 512+",
  24.     "AT&T 6300, 6300 PLUS, 6300 WGS",
  25.     "Hyundai 8088 PC"
  26. };
  27.  
  28. /* Clock special handling type.                                             */
  29.  
  30. static int clock_kind[] = {0, 0, 0, 2, 1, 0, 1, 1, 1, 1, 3, 1};
  31.  
  32. /*****************************************************************************/
  33. /*                THE PRECEDING PROGRAM IS THE SOLE PROPERTY OF              */
  34. /*                               RONALD Q. SMITH                             */
  35. /*             CONTAINING HIS PROPRIETARY CONFIDENTIAL INFORMATION           */
  36. /*                       COPYRIGHT RONALD Q. SMITH 1992                      */
  37. /*****************************************************************************/
  38.